home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ed.prerm < prev    next >
Encoding:
Text File  |  2004-08-12  |  392 b   |  19 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" != "upgrade" ]; then
  6.   update-alternatives --remove editor /bin/ed
  7. fi
  8.  
  9. case "$1" in
  10.        remove|upgrade|remove-in-favour|deconfigure-in-favour)
  11.                #
  12.                #       Remove the info documentation
  13.                #
  14.            install-info --quiet --remove /usr/share/info/ed.info.gz
  15.                ;;
  16.        failed-upgrade)
  17.                ;;
  18. esac
  19.